home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- mousehandler.cpp - description
- -------------------
- begin : 11.02.2005
- copyright : (C) 2005 by AndrΘ Simon
- email : andre.simon1@gmx.de
- ***************************************************************************/
-
- /***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
- #include "mousehandler.h"
-
-
- MouseEvtHandler::MouseEvtHandler(){}
-
- void MouseEvtHandler::OnRightMouseDown(wxMouseEvent& event)
- {
- wxMessageBox("º");
- // if we don't skip the event, the other event handlers won't get it:
- // try commenting out this line and see what changes
- event.Skip();
- }
-